diff options
author | 2022-03-29 07:35:03 -0400 | |
---|---|---|
committer | 2022-03-29 07:35:03 -0400 | |
commit | ecc6a4833f68eaf78bd5d619ff7c54b952c96b15 (patch) | |
tree | 95175d87fd2002ab441a968970512a1293c48874 /examples/blog-multiple-authors/src/pages/posts/[...page].astro | |
parent | 030fd48bdd917206f32c78c88a3fe2a2d9191101 (diff) | |
download | astro-ecc6a4833f68eaf78bd5d619ff7c54b952c96b15.tar.gz astro-ecc6a4833f68eaf78bd5d619ff7c54b952c96b15.tar.zst astro-ecc6a4833f68eaf78bd5d619ff7c54b952c96b15.zip |
Implement the Astro.request RFC (#2913)
* Implement the Astro.request RFC
* Disable console warnings eslint
* Use our logger
* Adds a changeset
* Fix tests that depend on params, canonicalURL, URL
Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'examples/blog-multiple-authors/src/pages/posts/[...page].astro')
-rw-r--r-- | examples/blog-multiple-authors/src/pages/posts/[...page].astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/blog-multiple-authors/src/pages/posts/[...page].astro b/examples/blog-multiple-authors/src/pages/posts/[...page].astro index da9b06fc5..7711a940c 100644 --- a/examples/blog-multiple-authors/src/pages/posts/[...page].astro +++ b/examples/blog-multiple-authors/src/pages/posts/[...page].astro @@ -28,9 +28,9 @@ export async function getStaticPaths({ paginate, rss }) { } // page -let title = 'Don’s Blog'; -let description = 'An example blog on Astro'; -let canonicalURL = Astro.request.canonicalURL; +const title = 'Don’s Blog'; +const description = 'An example blog on Astro'; +const { canonicalURL } = Astro; const { page } = Astro.props; --- |